home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / list / List_Init.c < prev    next >
C/C++ Source or Header  |  1990-11-27  |  1KB  |  52 lines

  1. /* 
  2.  * List_Init.c --
  3.  *
  4.  *    Source code for the List_Init library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/list/RCS/List_Init.c,v 1.3 90/11/27 11:05:41 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include "list.h"
  22.  
  23. extern void panic();
  24.  
  25. /*
  26.  * ----------------------------------------------------------------------------
  27.  *
  28.  * List_Init --
  29.  *
  30.  *    Initialize a header pointer to point to an empty list.  The List_Links
  31.  *    structure must already be allocated.
  32.  *
  33.  * Results:
  34.  *    None.
  35.  *
  36.  * Side effects:
  37.  *    The header's pointers are modified to point to itself.
  38.  *
  39.  * ----------------------------------------------------------------------------
  40.  */
  41. void
  42. List_Init(headerPtr)
  43.     register List_Links *headerPtr;  /* Pointer to a List_Links structure 
  44.                     to be header */
  45. {
  46.     if (headerPtr == (List_Links *) NIL || !headerPtr) {
  47.     panic("List_Init: invalid header pointer.\n");
  48.     }
  49.     headerPtr->nextPtr = headerPtr;
  50.     headerPtr->prevPtr = headerPtr;
  51. }
  52.